.admission-section {
  display: flex;
  align-items: flex-start;
}


.admission-right {
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 50px;
}

/*mobile view*/
@media (max-width: 768px) {
  .admission-left {
    position: relative;
    height: auto;
  }

  .admission-right {
    padding-left: 0;
  }
}

.tc-blue{
  color: rgb(0, 88, 129) 
}
.table thead th {
  background-color: rgb(66, 186, 241) !important;
}

.ul-sq li {
  position: relative;
  list-style: none;
  padding-left: 1.2em;
  padding-right: 5px;
}

.ul-sq li::before {
  content: "■"; /* Unicode square */
  color: #007BFF;
  position: absolute;
  left: 0;
}
.vds_img{
    height: 70vh;
    width: 100%;
}

.houses-section {
    background: #ffffff;
}

.house-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.2);
}

.house-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.house-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    padding: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 15%, 95% 100%, 0% 100%);
}

/* House Colors */
.house-banner.red {
    background: #ff0000;
}

.house-banner.white {
    background: #ffffff;
    color: #000 !important;
}

.house-banner.orange {
    background: #ff6a00;
}

.house-banner.yellow {
    background: #f7e600;
    color: #000;
}
.house-banner.green {
    background: #0f9d58;  
    color: #fff;
}


/* Responsive fine-tuning */
@media (max-width: 991px) {
    .house-banner {
        width: 90%;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .house-card img {
        height: 180px;
    }
}
